home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d3 / db4less3.arc / JOB.FMT < prev    next >
Text File  |  1990-06-16  |  2KB  |  63 lines

  1. ********************************************************************************
  2. *-- Name....: JOB.FMT
  3. *-- Date....: 11-17-88
  4. *-- Version.: dBASE IV, Format 1.0
  5. *-- Notes...: Format files use "" as delimiters!
  6. ********************************************************************************
  7.  
  8. *-- Format file initialization code --------------------------------------------
  9.  
  10. IF SET("TALK")="ON"
  11.    SET TALK OFF
  12.    lc_talk="ON"
  13. ELSE
  14.    lc_talk="OFF"
  15. ENDIF
  16.  
  17. *-- This form was created in COLOR mode
  18. SET DISPLAY TO COLOR
  19.  
  20. lc_status=SET("STATUS")
  21. *-- SET STATUS was ON when you went into the Forms Designer.
  22. IF lc_status = "OFF"
  23.    SET STATUS ON
  24. ENDIF
  25.  
  26.  
  27. *-- @ SAY GETS Processing. -----------------------------------------------------
  28.  
  29. *--  Format Page: 1
  30.  
  31. @ 2,29 SAY "JOB INFORMATION FORM" 
  32. @ 4,13 TO 19,64 
  33. @ 6,18 SAY "Job ID" 
  34. @ 6,26 GET jobid PICTURE "@! AAA99" 
  35. @ 6,35 SAY "Start Date" 
  36. @ 6,47 GET startdate 
  37. @ 8,18 SAY "Description" 
  38. @ 8,31 GET jobdesc PICTURE "@S25 " 
  39. @ 10,18 SAY "Customer Code" 
  40. @ 10,33 GET custcode PICTURE "@! XXXXXXXXXX" 
  41. @ 13,18 SAY "Bid Price" 
  42. @ 13,28 GET bidprice PICTURE "9999999.99" 
  43. @ 15,18 SAY "Completed" 
  44. @ 15,28 GET completed PICTURE "Y" 
  45. @ 15,35 SAY "Completion Date" 
  46. @ 15,52 GET compdate 
  47. @ 17,18 SAY "Invoiced" 
  48. @ 17,28 GET invoiced PICTURE "Y" 
  49.  
  50. *-- Format file exit code -----------------------------------------------------
  51.  
  52. *-- SET STATUS was ON when you went into the Forms Designer.
  53. IF lc_status = "OFF"  && Entered form with status off
  54.    SET STATUS OFF     && Turn STATUS "OFF" on the way out
  55. ENDIF
  56.  
  57. IF lc_talk="ON"
  58.    SET TALK ON
  59. ENDIF
  60.  
  61. RELEASE lc_talk,lc_fields,lc_status
  62. *-- EOP: JOB.FMT
  63.